Configure Icon

All Planes On All Nested

Overview

The All Planes On All Nested command is designed to make all work planes visible throughout your entire assembly, including all nested components and subassemblies. This is especially useful when you need to inspect, edit, or troubleshoot the geometric relationships and construction features within complex assemblies.

When executed, the command iterates through every component and subcomponent in the active assembly, setting the visibility of all work planes to on. If your document includes the parameter ShowPlanes, it will be set to True. This parameter is used throughout Assembly Tools components to trigger additional logic when planes are toggled, supporting advanced automation and custom workflows.

Most users will not need to manually toggle plane visibility after running this command, as it ensures all work planes are visible. However, if you have specific planes that should always remain hidden, you can add a rule to your component to turn those planes off as needed. For example, if you have a work plane named “never turn on,” you can set its visibility in your rule:
ThisDoc.Document.ComponentDefinition.WorkPlanes("never turn on").Visible = False

This command is ideal for assemblies with deep nesting, where manual toggling would be time-consuming and error-prone. It helps maintain a clear visual environment and supports automated workflows that depend on the ShowPlanes parameter.

How It Works

  1. Iterates through all components and nested components in the active assembly.
  2. Sets the visibility of every work plane to on (visible).
  3. If the ShowPlanes parameter exists, it is set to True.
  4. Custom rules in components can override the default behavior for specific planes.

Usage Instructions

  1. Open the target assembly or component.
  2. Click the All Planes On All Nested button in the Configure panel.
  3. All work planes in all components and nested components will be made visible.
  4. If you want to keep a specific plane hidden, add a rule to your component to set its visibility as needed.

Troubleshooting

  1. If some planes remain hidden, check for custom rules in your components that may override the default behavior.
  2. Ensure the ShowPlanes parameter exists if you want to use it for additional logic.
  3. Review your component rules for any logic that may affect plane visibility.

Examples

  1. Show all planes in a nested assembly: Run the command to make all work planes visible in every component and nested component.
  2. Override visibility for a specific plane: If you have a work plane named “never turn on,” you can keep it hidden by adding a rule such as:
    ThisDoc.Document.ComponentDefinition.WorkPlanes("never turn on").Visible = False

Related Commands

  1. All Planes Off All Nested
  2. All Planes Off All
  3. Planes Toggle
  4. Configure

Assembly Tool Suites